home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / bbs / g5109b.zip / G5.ZIP / G5.BAT < prev    next >
DOS Batch File  |  1996-11-27  |  570b  |  32 lines

  1. @echo off
  2. IF "%1"=="" GOTO WRONG
  3. IF "%1"=="/l" Goto Local
  4. IF "%1"=="/L" Goto Local
  5.  
  6. :Start
  7. GALAXY5 NODE%1.CFG
  8. If ErrorLevel 255 Goto Xport
  9. GOTO END
  10.  
  11. :Local
  12. GALAXY5 /L
  13. If ErrorLevel 255 Goto Local_Xport
  14. GOTO END
  15.  
  16. :Local_Xport
  17. Call TEMP\XPORT0.BAT
  18. Goto Local
  19.  
  20. :Xport
  21. Call TEMP\XPORT%1.BAT
  22. Goto Start
  23.  
  24. :WRONG
  25. Echo.
  26. Echo This batch file is used for calling from your BBS softwares batch file
  27. Echo that you will be using to run Galaxy 5 with. To play the game locally,
  28. Echo use the LOCAL.BAT file (just type LOCAL and press ENTER).
  29. Echo.
  30.  
  31. :END
  32.